home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1993…ch: Other People's Memory / ADC Developer CD (1993-03) (''Other People's Memory'')_iso / Dev.CD Mar 93.iso / Development Platforms / Apple II / Essentials / APW Interfaces / AInclude / E16.Memory < prev    next >
Encoding:
Text File  |  1991-07-01  |  1.1 KB  |  30 lines  |  [TEXT/MPS ]

  1. ; File:  E16.Memory
  2. ;
  3. ;
  4. ; Copyright Apple Computer, Inc. 1986-90
  5. ; All Rights Reserved
  6. ;
  7. ;
  8. memErr GEQU $0201 ; unable to allocate block
  9. emptyErr GEQU $0202 ; illegal operation, empty handle
  10. notEmptyErr GEQU $0203 ; an empty handle was expected for this operation
  11. lockErr GEQU $0204 ; illegal operation on a locked block
  12. purgeErr GEQU $0205 ; attempt to purge an unpurgable block
  13. handleErr GEQU $0206 ; an invalid handle was given
  14. idErr GEQU $0207 ; an invalid owner ID was given
  15. attrErr GEQU $0208 ; operation illegal on block with given attributes
  16. attrNoPurge GEQU $0000 ; Not purgeable
  17. attrBank GEQU $0001 ; fixed bank
  18. attrAddr GEQU $0002 ; fixed address
  19. attrPage GEQU $0004 ; page aligned
  20. attrNoSpec GEQU $0008 ; may not use special memory
  21. attrNoCross GEQU $0010 ; may not cross banks
  22. attrPurge1 GEQU $0100 ; Purge level 1
  23. attrPurge2 GEQU $0200 ; Purge level 2
  24. attrPurge3 GEQU $0300 ; Purge level 3
  25. attrPurge GEQU $0300 ; test or set both purge bits
  26. attrHandle GEQU $1000 ; block of master pointers
  27. attrSystem GEQU $2000 ; system handle
  28. attrFixed GEQU $4000 ; not movable
  29. attrLocked GEQU $8000 ; locked
  30.